fix: add stale.yml workflow#8
Merged
Merged
Conversation
Signed-off-by: fOuttaMyPaint <TMhospitalitystrategies@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
.github/workflows/stale.ymlto close the gap caught by the ecosystem drift checker (TMHSDigital/Developer-Tools-Directory#62).The workflow is sourced from the meta-repo scaffold template (
scaffold/templates/stale.yml.j2). It contains no plugin-manifest or skills/rules references and applies unchanged to this mcp-server repo.What it does
Marks issues and PRs stale after 30 days of inactivity, closes them after 7 more days. Runs on a weekly schedule and supports
workflow_dispatch.Why
The required-workflows drift check introduced in meta-repo v1.10.0 mandates
stale.ymlfor all mcp-server repos. This repo was missing it. The file sits alongside the existingci.yml,drift-check.yml, andpublish.ymlwith no filename collision.This
fix:commit will drive a patch auto-bump via this repo'srelease.ymlon merge. No standards-version marker changes are included; the version rollout is a separate deferred effort.